home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lantools / audit / audit.bat next >
DOS Batch File  |  1979-12-31  |  954b  |  38 lines

  1. Echo Off
  2. If %1. == . Goto BadParm
  3. Echo ╔══╡BEGINNING AUDIT╞══════════════════════════════╗
  4. Echo ║ You may turn on the printer by holding down the ║
  5. Echo ║ [Ctrl] key while pressing [PrtSc].  I will wait ║
  6. Echo ║ for you to press any key to give you a chance.  ║
  7. Echo ╚═══════════════════╪═════════════════════════════╝
  8. Echo       ┌─────────────┘
  9. Pause
  10. :LoopTop
  11. %1:
  12. Cd \
  13. Echo  Audit Beginning on drive %1:
  14. VtreeHp
  15. Echo 
  16. Echo 
  17. Unusual
  18. Shift
  19. If not %1. == . Goto LoopTop
  20. Echo 
  21. Echo  The Audit is done.
  22. Echo You may now press [Ctrl] and [PtrSc] to turn
  23. Echo the printer off.  Thank you.
  24. Pause
  25. Goto :End
  26. :BadParm
  27. Echo Missing Parameter: Drive specification!
  28. Echo 
  29. Echo Please enter the command again, with a drive
  30. Echo name (EXCLUDING colon!)
  31. Echo 
  32. Echo For example:      %0 C
  33. Echo 
  34. Echo You may list more than one drive if you wish, such as %0 C D E
  35. Echo to audit those drives as well.
  36. Echo 
  37. Echo Thank You.
  38. :End